home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19950929-19951130 / 000305_news@columbia.edu_Sat Nov 4 16:45:07 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07908
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 4 Nov 1995 11:45:12 -0500
  3. Received: by apakabar.cc.columbia.edu id AA27828
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 4 Nov 1995 11:45:10 -0500
  5. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  6. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: Proper way to run kermit in server mode under inetd?
  9. Date: 4 Nov 1995 16:45:07 GMT
  10. Organization: Columbia University
  11. Lines: 29
  12. Message-Id: <47g5aj$r5i@apakabar.cc.columbia.edu>
  13. References: <DHBAtt.JqC@olsen.ch>
  14. Nntp-Posting-Host: watsun.cc.columbia.edu
  15. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16.  
  17. In article <DHBAtt.JqC@olsen.ch>, Martin Lichtin <lichtin@olsen.ch> wrote:
  18. : I tried the following under SunOS, in /etc/inetd.conf, and it really
  19. : seems to work!
  20. : kermit    stream    tcp    nowait    nobody    <path>/kermit    kermit -x -l 1
  21. : However, I was (sort of) guessing the open stdin file handle. Is this
  22. : the proper ways of doing it or is there a cleaner way? 
  23. : However, there's a real serious problem that when I'm not explicitly
  24. : shutdown the kermit server with a BYE or FINISH command, the server
  25. : goes into a (endless?) loop complaining "TCP/IP: Broken pipe" trying
  26. : to send "\1# N3". Any hint on how to avoid this behaviour? I can't
  27. : count on clients to properly shutdown the connection...
  28. Exactly which version of C-Kermit?  5A(190) is current, 5A(192) is in
  29. development.
  30.  
  31. A packet log might show why the server is trying to send a NAK.  The
  32. default is for it not to do that in between "transactions".  Maybe all
  33. you need to do is tell it "set server timeout 0".
  34.  
  35. One of the many items on our list is to make C-Kermit capable of running on
  36. its own socket, just like (say) an FTP server, but we have not done this
  37. yet for UNIX.  However, we do have a socket assigned by IANA for this purpose:
  38. 1649, as yet unused.
  39.  
  40. - Frank